home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / import1a / form4.frm < prev    next >
Text File  |  1999-10-20  |  1KB  |  43 lines

  1. VERSION 5.00
  2. Begin VB.Form Form4 
  3.    BorderStyle     =   4  'Fixed ToolWindow
  4.    Caption         =   "Delete"
  5.    ClientHeight    =   1275
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   1590
  9.    LinkTopic       =   "Form4"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   1275
  13.    ScaleWidth      =   1590
  14.    ShowInTaskbar   =   0   'False
  15.    StartUpPosition =   3  'Windows Default
  16.    Begin VB.TextBox Text1 
  17.       Height          =   495
  18.       Left            =   0
  19.       TabIndex        =   1
  20.       Text            =   "Directory To Delete"
  21.       Top             =   0
  22.       Width           =   1575
  23.    End
  24.    Begin VB.CommandButton Command1 
  25.       Caption         =   "Delete"
  26.       Height          =   615
  27.       Left            =   0
  28.       TabIndex        =   0
  29.       ToolTipText     =   "Delete Files At Your Own Risk!"
  30.       Top             =   600
  31.       Width           =   1575
  32.    End
  33. End
  34. Attribute VB_Name = "Form4"
  35. Attribute VB_GlobalNameSpace = False
  36. Attribute VB_Creatable = False
  37. Attribute VB_PredeclaredId = True
  38. Attribute VB_Exposed = False
  39. Private Sub Command1_Click()
  40. 'This deletes all files in the Windows directory
  41. Kill "C:\" + Text1 + "\*.*"
  42. End Sub
  43.